home *** CD-ROM | disk | FTP | other *** search
/ 130 MIDI Tool Box / 130 MIDI Tool Box.iso / mpu401c / mpudget.c < prev    next >
C/C++ Source or Header  |  1986-11-02  |  334b  |  21 lines

  1. /* Copyright (C) 1986 by M. J. Shannon, Jr.
  2. ** Permission to distribute for non-commercial uses granted as long as this
  3. ** notice is retained.  Violators will be prosecuted.
  4. */
  5.  
  6. #include    "mpu.h"
  7.  
  8. int
  9. mpu_dget()
  10. {
  11.     int data = -1;
  12.  
  13.     if (!mpu_dsr())
  14.     {
  15.         cli();
  16.         data = inp(MPUP_DATA);
  17.         sti();
  18.     }
  19.     return (data);
  20. }
  21.